home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / TUT18.ZIP / TEMP.PAS < prev    next >
Pascal/Delphi Source File  |  1995-02-21  |  215b  |  19 lines

  1. USES fpack,crt;
  2.  
  3. BEGIN
  4.   total:=1;
  5.   infodat[1]:='grim.pcx';
  6.   asm
  7.     mov   ax,0013h
  8.     int   10h
  9.   end;
  10.  
  11.   loadpcx (1,$a000,true);
  12.   readkey;
  13.  
  14.   asm
  15.     mov   ax,0003h
  16.     int   10h
  17.   end;
  18. END.
  19.